16. Quizzes: Integration Testing

Quizzes: Integration Testing

QUIZ QUESTION::

Sort the types of automated testing.

ANSWER CHOICES:



Description

Testing Type

Scope: Narrow
Number of Tests: Most

Scope: Moderate
Number of Tests: Some

Scope: Broad
Number of Tests: Few

SOLUTION:

Description

Testing Type

Scope: Moderate
Number of Tests: Some

Scope: Narrow
Number of Tests: Most

Scope: Broad
Number of Tests: Few

The list below contains some behaviors performed by Integration Tests and some behaviors performed by Unit Tests. Mark all the examples of Integration Tests.

SOLUTION:
  • Calling `userService.saveUser(user)` and then checking if the value was written to the database.
  • Using WireMock to supply a value in response to an http request when `storefrontService` calls the `icecreamPriceAPI.checkCurrentPrice(flavor)` method.